Page 1 of 1

Checkbox list : To show it in popup just similar to Select List.

Posted: Wed Apr 16, 2014 10:19 am
by Himanshu

Hello Team,

Please help me in one scenario.

I need to show some data in CheckBox list, as we need multiple select option. Appery.IO's CheckBox control will be able to do this task, but it shows all the list directly into the page, so page height would increase in that case (500 records).
So can we have any option, to show this list something like as "Select List" component, so that initially there would be a textBox, and when click on that we will see the whole list in the popup?


Checkbox list : To show it in popup just similar to Select List.

Posted: Wed Apr 16, 2014 1:08 pm
by Kateryna Grynko

Hi Himanshu,

You could use popup, and place a checkbox there.


Checkbox list : To show it in popup just similar to Select List.

Posted: Thu Apr 17, 2014 6:21 am
by Himanshu

I used "multiple" option as "true" (In More Properties) in "Select" control. And it worked perfectly.

But one thing, I want to ask as How can we set place-holder on Select list?

This link didn't work for me.
https://getsatisfaction.com/apperyio/...


Checkbox list : To show it in popup just similar to Select List.

Posted: Thu Apr 17, 2014 10:16 am
by Kateryna Grynko

Hi Himanshu,

Run the following code on Load event to add a placeholder:pre$("#screenName_mobileselectmenuName-listbox .ui-header").removeClass("ui-screen-hidden");
$("#screenName_mobileselectmenuName-listbox .ui-title").text("Please choose");
$("#Screen1_mobileselectmenu_4-button span").text("Please choose");
Appery("mobileselectmenuName").find(":selected").removeAttr("selected");/preWhere 'mobileselectmenuName' is a select component name,
'screenName' is a page name.