Questions tagged [quickdialog]

QuickDialog allows you to create HIG-compliant iOS forms for your apps without having to directly deal with UITableViews, delegates and data sources.

Project Main Site and Documentation
Github Page
Google Group for Q&A

49 questions
6
votes
2 answers

How to implement swipe to delete with quickdialog

I am using quickdialog for a form and I am trying to implement swipe to delete and have no idea how I would do that. Can anybody help me?
BObereder
  • 1,046
  • 1
  • 13
  • 29
5
votes
5 answers

UITableView not scrolling after switching to iOS 7

In iOS 6, I had a UITableView created using QuickDialog in my app. It scrolled normally. When I switched to iOS 7, the same UITableView does not scroll properly. I can drag to the bottom (the scroller compresses) but when I release, it pops back up…
Fausto Morales
  • 163
  • 1
  • 8
2
votes
1 answer

QuickDialog QEntryElement ellipsis and overlapping issue

I am using QEntryElement from QuickDialog library. For some reason title of QEntryElement have ellipsis when seeing in iPad.How should I fix this. Another issue is in Landscape mode in iPad text typed in overlaps with title of QEntryElement. let…
NinjaCoder
  • 2,381
  • 3
  • 24
  • 46
2
votes
1 answer

Multiline Inline Entry Element for QuickDialog

QMultilineElement pushes a new controller with a UITextView in it. There are some times, however, when inline editing is preferable. Has anyone made a custom element for QuickDialog that serves this purpose? Project:…
GoldenJoe
  • 7,874
  • 7
  • 53
  • 92
2
votes
0 answers

How to update QButtonElement title using quickdialog

Right now, in SignUpController, I want to update one of QButtonElement's title using delegate, in the delegate method I can get the value from the delegate. But I can't set the value to this QButtonElement's title. The code like this: #import…
yong ho
  • 3,892
  • 9
  • 40
  • 81
2
votes
0 answers

QSelectSection not saving values when scrolling QuickDialog

I've been struggling with this for 3 days. The documentation for the QSelectSection is the class itself, and the QuickDialog docs are minimal at best. I'm trying to use the QSelectSection using the QuickDialog framework. I have it working for most…
Dan Power
  • 1,141
  • 1
  • 12
  • 18
2
votes
1 answer

How to access the UITableViewCell of a QuickDialog cell element?

I am trying to access the properties of the UITableViewCell of a QuickDialog form. More specifically, I am trying to access the accessoryView property of a QEntryElement (QDateTimeInlineElement), which is "hidden" in the property list of the object…
maggix
  • 3,268
  • 1
  • 22
  • 36
1
vote
2 answers

Build a factory method to create QuickDialog Entry Elements bound to view model with RAC

I'm building a rather long form with QuickDialog and Reactive Cocoa and I would love to be able to write a factory method to setup my QElements from the same form. Here's my example of how I'm doing it now. self.root = [[QRootElement alloc]…
Ben M.
  • 430
  • 2
  • 11
1
vote
1 answer

QuickDialog doesn't show 'prev' and 'next' toolbar as it's inputaccessoryview

I created a test application and I can't get the next/previous toolbar to show above the keyboard while using the QuickDialog library. I tried toggling the hiddenToolbar property too. Am I missing something simple?
Steve Moser
  • 7,647
  • 5
  • 55
  • 94
1
vote
1 answer

QuickDialog on iOS not binding to subform elements in JSON

So I have this form, which pushes a subform for gathering mailing address info (I've simplified the JSON definition of the form here for clarity - I did test this version, and it still breaks): { "grouped": true, "title": "Add", …
belvario
  • 13
  • 2
1
vote
2 answers

How to remove table top padding with QuickDialog library in IOS 7?

I am using QuickDialog library in my IOS project. But it has a problem with table appearance: The height of headerView in first table section is 10. But the top padding is much more than 10! The table frame is right(fullscreen), and…
Zhang Jiuzhou
  • 759
  • 8
  • 22
1
vote
1 answer

UITableViewCell using QuickDialog : handle touch event on all the cell's surface

I use custom cell on UITableView using QuickDialog In this custom cell I have several UILabel, UIImageView and a button which has the cell size and display on the top of the others subviews. I want this button handle touch envent and call a…
Jean Lebrument
  • 5,079
  • 8
  • 33
  • 67
1
vote
1 answer

how to get values from QuickDialog in iOs

I need some help in QuickDialog. I am using this tutorial QuickDialog but i cannot find what i would like to do in my QuickDialog. First i have a controller A that will transfer to controller B using QuickDialog, values are in controller A. Now, my…
lhencq
  • 505
  • 2
  • 6
  • 16
1
vote
1 answer

QSelectSection in quickDialog using JSON

I am trying to build the QSelectSection in JSON. I am using this: { "type":"QSelectSection", "title":"multiselect", "items":[[1, 2, 3]], "multipleAllowed":true } But when I build and run, I…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
1
vote
2 answers

How do I update value of a QLabelElement?

I've initialized a QLabelElement, and then later want to update its value. However explicitly setting the .value property on the instance of QLabelElement doesn't update its value. Here is a snippet of what I'm trying to do. The onSelected…
Amir
  • 9,091
  • 5
  • 34
  • 46
1
2 3 4