Hello,
My organization considers buying SmartGWT Enterprise Edition, so I've downloaded the demo version and started writing a Proof of Concept to prove we really need it.
I've run into some issues which I hope you can solve for me, and speed the purchase process:
1. I'm using a ListGrid with an SQLDataSource to fetch and present data from the DB. I would like to add an extra Where clause string to the DSRequest the listGrid sends. So far I only managed to add it through a custom DataSource that inherits the SQLDataSource and adds the where clause, but it's patchy and I want the client to send it, not the server. so in short - How can i add the where clause string?
2. My DB table contains RAW and BLOB types. these two have to be mapped to 'binary' fieldType. the problem is that it forces me to create 3 additional fields per field (x_filename, x_size, x_date_created) that will be of no use for me. Also, i'd like the short RAW field to be presented as Hex-string, and to be converted during fetch and store.
So this questions is composed of a few:
a. do you have a workaround for that?
b. can i extend your code to support this feature?
c. can i raise this as a feature request? how long does it usually take?
3. Generating ForeignKeys: Using the DataSource Wizard doesn't discover my foreign keys, is it supposed to?
4. Using fetchRelated between 2 ListGrids and DataSources selects everything from the related DS.
5. I want to dynamically join 2 data sources in the same list grid, how is that possible?
6. Do you have testing methodology papers, design best practices? We planned on using GWT's MVP design pattern, but the way your object work interferes with it
Thank you for your help!
My organization considers buying SmartGWT Enterprise Edition, so I've downloaded the demo version and started writing a Proof of Concept to prove we really need it.
I've run into some issues which I hope you can solve for me, and speed the purchase process:
1. I'm using a ListGrid with an SQLDataSource to fetch and present data from the DB. I would like to add an extra Where clause string to the DSRequest the listGrid sends. So far I only managed to add it through a custom DataSource that inherits the SQLDataSource and adds the where clause, but it's patchy and I want the client to send it, not the server. so in short - How can i add the where clause string?
2. My DB table contains RAW and BLOB types. these two have to be mapped to 'binary' fieldType. the problem is that it forces me to create 3 additional fields per field (x_filename, x_size, x_date_created) that will be of no use for me. Also, i'd like the short RAW field to be presented as Hex-string, and to be converted during fetch and store.
So this questions is composed of a few:
a. do you have a workaround for that?
b. can i extend your code to support this feature?
c. can i raise this as a feature request? how long does it usually take?
3. Generating ForeignKeys: Using the DataSource Wizard doesn't discover my foreign keys, is it supposed to?
4. Using fetchRelated between 2 ListGrids and DataSources selects everything from the related DS.
5. I want to dynamically join 2 data sources in the same list grid, how is that possible?
6. Do you have testing methodology papers, design best practices? We planned on using GWT's MVP design pattern, but the way your object work interferes with it
Thank you for your help!
Comment