Find list by id
This commit is contained in:
parent
ee1ba9585a
commit
059f9f2938
@ -482,6 +482,7 @@ local PAGES = {
|
|||||||
[Orientation:getId()] = Orientation.VERTICAL,
|
[Orientation:getId()] = Orientation.VERTICAL,
|
||||||
[Children:getId()] = {
|
[Children:getId()] = {
|
||||||
List:new{
|
List:new{
|
||||||
|
id = "list_request_count",
|
||||||
[Orientation:getId()] = Orientation.HORIZONTAL,
|
[Orientation:getId()] = Orientation.HORIZONTAL,
|
||||||
[Children:getId()] = {
|
[Children:getId()] = {
|
||||||
Text:new{ text = "Request" },
|
Text:new{ text = "Request" },
|
||||||
@ -558,6 +559,7 @@ local PAGES = {
|
|||||||
local dataDividerPad = paddedRequestCount:findById("data_divider")
|
local dataDividerPad = paddedRequestCount:findById("data_divider")
|
||||||
local dataAvailableText = paddedRequestCount:findById("data_available")
|
local dataAvailableText = paddedRequestCount:findById("data_available")
|
||||||
local requestCapProgress = paddedRequestCount:findById("request_capacity")
|
local requestCapProgress = paddedRequestCount:findById("request_capacity")
|
||||||
|
local requestCountList = paddedRequestCount:findById("list_request_count")
|
||||||
|
|
||||||
local requestText = tostring(pageState.request)
|
local requestText = tostring(pageState.request)
|
||||||
local availableText = tostring(group:getItemCount())
|
local availableText = tostring(group:getItemCount())
|
||||||
@ -570,7 +572,7 @@ local PAGES = {
|
|||||||
dataAvailableText:setText(availableText)
|
dataAvailableText:setText(availableText)
|
||||||
requestCapProgress:setProgress(pageState.request / group:getItemCount())
|
requestCapProgress:setProgress(pageState.request / group:getItemCount())
|
||||||
|
|
||||||
paddedRequestCount:adjustPositions()
|
requestCountList:adjustPositions()
|
||||||
end
|
end
|
||||||
|
|
||||||
local function bindRequestButton(increment)
|
local function bindRequestButton(increment)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user