On Wed, Oct 10, 2012 at 9:42 AM, Rahul Kaushik <rahulkaushi...@gmail.com> wrote:
> Hello,
> I need to save the 120 check Box options,i don't want to use database
> Should i pass back them as query String to the Server ??
> Please Suggest
> Thanks
> RK
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
its an inspection app,So i have to have 120 check
box for complete inspection. UI not terrible, because i
divided checkbox(s) in 6 different tab 20 check box each.
Main issue is how to pass these 120 options to the server.
Any suggestion for betterment are most welcome
Thanks
RK
On Thu, Oct 11, 2012 at 1:12 AM, Larry Meadors <larry.mead...@gmail.com>wrote:
> On Wed, Oct 10, 2012 at 1:27 PM, bob <b...@coolfone.comze.com> wrote:
> > Like C1 for checkbox 1.
> Heh, so the server side code is terrifying, too? Dang. Twisted.
> Larry
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
give a unique id to each checkbox (let's say 1 to 120), id and label should be in sync with your server.
now send only selected checkbox id to server using a query string seperated by comma, I mean (selected = '1,2,3,119' parse this string to server and process it
On Thursday, October 11, 2012 12:31:08 AM UTC-5, rahul kaushik wrote:
> its an inspection app,So i have to have 120 check > box for complete inspection. UI not terrible, because i > divided checkbox(s) in 6 different tab 20 check box each.
> Main issue is how to pass these 120 options to the server.
> Any suggestion for betterment are most welcome
> Thanks > RK
> On Thu, Oct 11, 2012 at 1:12 AM, Larry Meadors <larry....@gmail.com<javascript:> > > wrote:
>> On Wed, Oct 10, 2012 at 1:27 PM, bob <b...@coolfone.comze.com<javascript:>> >> wrote: >> > Like C1 for checkbox 1.
>> Heh, so the server side code is terrifying, too? Dang. Twisted.
>> Larry
>> -- >> You received this message because you are subscribed to the Google >> Groups "Android Developers" group. >> To post to this group, send email to android-d...@googlegroups.com<javascript:> >> To unsubscribe from this group, send email to >> android-developers+unsubscribe@googlegroups.com <javascript:> >> For more options, visit this group at >> http://groups.google.com/group/android-developers?hl=en