
Think, that: Smartgwt dmi file download
| Creativo zip file download | 660 |
| Driver 1 soundtrack download | 675 |
| Pc destiny 2 downloaded how do i install | 471 |
Vertical cell alignment problem in list grid.
Previous Article Next Article
December 19, 2013, 10:12 pm
Is there any way to vertically align list grid cell in top position? I am using the following smart client features for my list grid cell alignment.
1) cellAlign:"left" => As expected it is working fine.
2) cellVAlign:"top" => Not working.(I have tested it in Firefox- 25.0.1, Google Chrome- 31.0.1650.63 m and IE-9.0).
I am using SmartClient_v90p_2013-08-15_Pro version. Please check the attached screen shot.
Previous Article Next Article
December 20, 2013, 2:28 am
Hi,
I am using Smart GWT 3.1Pro Edition (2013-12-17 nightly) and launching my application in Firefox 25.0.1 & IE 8
My Application work by fetching some cognos reports and displaying at frontEnd (developed in smartgwt).
My Application involves SmartGwt (frontEnd) + Jboss 7.1.1 (Application server) + Cognos (Reporting stuff)
For this I am using below Datasource .
<DataSource
ID="dataSourceName"
serverConstructor="classPath"
>
<!-- Dynamic - defined at runtime -->
<fields/>
</DataSource>
I am using below API to create a ListGridField for the Header value text from Cognos report.
ListGridField field = new ListGridField(String name, String title);
Initially content type was set to 'utf-8', then the problem was that when CSV file export was done file's encoding would be in UTF which when opened by Excel
spreadsheet appends "Â" before pound sign like "Value £" instead of "Value £". Later i changed the content type to iso-8859-1 at application and deployed .
Now my application is displaying the content of the Cognos report fine but while exporting the content to csv file, in the header section
when ever the pound(£) sign is encountered in the column, that column is exported as 'null' .
I am using exportData(dsRequest) API and not setting any ContentType while calling the API.
There are no Errors i found from server logs but i strongly believe it is an Encoding issue .
If i need to look for some other logs please guide me how can i get them.
Please let me know if any extra information is needed.
Thanks in advance
Sandeep
Previous Article Next Article
December 20, 2013, 3:06 am
Problem:
When datechooser is mouse overed (like moving mouse pointer up an down over datechooser compoment) its becomes enlarged in hight (see attached figure).
1. SmartGWT 4.0 Showcase.
http://www.smartclient.com/smartgwt/showcase/#controls_category_datechooser
2. browser(s) and version(s) involved
FireFox 16.0.2
BR
Marije
Previous Article Next Article
December 20, 2013, 3:07 am
in short: I have a VLayout and add an HStack to it, I'd expect that it is positioned on top, the upper end of the page, but instead there's some gap (quite big gap). There's no CSS applied from my side.
How can I get rid of this gap?
Version: SmartClient Version: v9.0p_2013-09-19/PowerEdition Deployment (built 2013-09-19)
Browsers: Firefox 24<, Google Chrome 31<
Code:
Previous Article Next Article
December 20, 2013, 4:17 am
Hi,
We migrated from SmartGwt 3.1P to SmartGwt 4.0P.After migration we faced issue with getFetchDataURL().
If we call getFetchDataURL() API in transformRequest() its retuning null and its calling fetch request .Due to this the request is going infinitely. Bellow is the code in transformRequest() method.
protected Object transformRequest (DSRequest request) {
String requestBody="";
if (request.getOperationType().toString().equalsIgnor eCase("fetch")) {
String sessionId ="dummysession";
String queryString = "?&sessionId=" + sessionId
+ "&groupId=" + "1" + "&item=" + "sampleTestRequest";
getFetchDataURL();
request.setActionURL(getFetchDataURL() + queryString);
}
else if (request.getOperationType().toString().equalsIgnor eCase("update")) {
requestBody="some URl";
}
return requestBody;
}
For more details please refer attached code (SampleDS and AbstractBaseDS files)
We checked with "2013-12-20" nightly build , still issue is there .
Note: Same logic is working when we are using SmartGwt3.1P.
Please let us know your comments.
Thanks.
Previous Article Next Article
December 20, 2013, 4:57 am
Hello
I'm working on setting tab indexes in a dynamic form. setTabIndex() and the setGlobalTabIndex() works fine with other types of form items like text box, drop down. But it
simply doesn't work with MultiComboBoxItem.
Could it be because of the following statement used in my code?
MultiComboBoxItem.setComboBoxProperties(ComboBoxIt em);
Can someone please let me know if tab indexing will work with MultiComboBoxItem
I'm using SmartGwt 3.1 and tested it on Firefox and IE.
Thanks in advance
Vasanth
Previous Article Next Article
December 20, 2013, 5:16 am
Hi,
I'm using SmartGWT 4.0p, and I recently found the following problem:
I'm instanciating an Img and have called setShowDisabledIcon(false). This seems to have no effect (img src attributes is still changed to _disabled) except if I also call setShowDisabled(false), which I do want to do as I want to still have control over the img's CSS.
Thanks for checking,
Thomas
Previous Article Next Article
December 20, 2013, 10:17 am
Please forgive my poor english, it's not my first language.
I have a problem when I delete multiple rows in a ListGrid which have showGroupSummary or setShowGridSummary at true :
if you put your mouse on the deleted rows (not the last one), the "deleted skin" disappear (but the "undo delete" icon stay).
I attach a screen to this topic to illustrate the problem, and a sample after this text.
I'm using SmartGWT4.0 and GWT 2.5.1
Sombody has an idea ?
Thanks in advance :)!
Code:
Previous Article Next Article
December 20, 2013, 2:21 pm
Code:
Previous Article Next Article
December 20, 2013, 6:12 pm
I used smartGWT 4.0. My browser is firefox.
I want to edit multi rows in the client using right-click menuitem "add" for add a new record,"modify" for modify a record,"delete" for delete a record,then use button "save" to save all my edit to server.my code like this:
listGrid setting:
listGrid.setAutoSaveEdits(false);
listGrid.setCanEdit(true);
listGrid.setEditEvent(ListGridEditEvent.NONE);
listGrid.setListEndEditAction(RowEndEditAction.DON E);
three function for add,modify and delete
private void gridDelete(){
Object operateGrid=appElement.get("mms0000113");
if(operateGrid instanceof ListGridExtend){
Integer rowNum=((ListGridExtend) operateGrid).getFocusRow();
if(rowNum !=null){
SC.say(Integer.toString(rowNum));
((ListGridExtend) operateGrid).markRecordRemoved(rowNum);
}else{
SC.say("no current row");
}
}
}
private void gridModify(){
Object operateGrid=appElement.get("mms0000113");
if(operateGrid instanceof ListGridExtend){
Integer rowNum=((ListGridExtend) operateGrid).getFocusRow();
if(rowNum !=null){
SC.say(Integer.toString(rowNum));
((ListGridExtend) operateGrid).startEditing(rowNum);
}else{
SC.say("no current row");
}
}
}
private void gridAdd(){
Object operateGrid=appElement.get("mms0000113");
if(operateGrid instanceof ListGridExtend){
((ListGridExtend) operateGrid).startEditingNew();
}
}
my question is :
when I add some rows in the grid,I cannot select a row to modify or delete.
but if the record of listgrid is fetch from server,then I can modify and delete them.
can you give me some suggestion to result this problem?
thank you!
Previous Article Next Article
December 21, 2013, 6:12 am
I want to realize a function like this:
when I click a row using right-click or mouse,How do I get the rowNum.Is there function like :addRowRightMouseDownHandler?
Can you give me some suggestion.
Previous Article Next Article
December 22, 2013, 10:18 pm
I plan to upgrade my existing application that using SmartGWT 3.1 on Spring 3.0.5.RELEASE and DMI feature to SmartGWT 4.1d (version of others are same)
Where can I find the migration instruction/steps/document so that I can know what need to be changed from old application config or code?
Previous Article Next Article
December 22, 2013, 10:32 pm
I use SmartGWT 4.1d Power Edition + Spring 3.0.5.RELEASE
Firefox 17.0.4
I try to migrate a existing application from SmartGWT 3.1 to 4.1d, when I try the case that client fetch data through DMI to Spring server service, I found 3.1 work normal but when I change to 4.1 library, it's not work
Symptom is as following
1. find http request from client side as following to server side from browser sniffer
<http://localhost:8080/testapp/ds/Account.ds.xml?isc_rpc=1&isc_v=SNAPSHOT_v9.1d_2013-11-24&isc_xhr=1>
2. cannot found any log in server side console and the Spring service cannot invoke
3. When I change the version from 4.1 to 3.1, I find it all work normally that the fetch can fire the server side and get back the data to client side
I have no change on the Spring version and any config for 3.1 test and 4.1 test but only the version # of of smartgwt lib in pom.xml
Is there any special steps if we want to migrate the application if SmartGWT upgrade from 3.1 to 4.1?
Some more finding that for 3.1 that I found it is work, we found the URL call from client to server is as following
http://localhost:8080/gwt-showcase/s...0-04&isc_xhr=1
But after I update the SmartGWT to 4.1, for same application code, same config, and same function call, it become
http://localhost:8080/gwt-showcase/d...1-24&isc_xhr=1
It's seem to be the error that when we call "ds/Account.ds.xml" and it cannot intercept the request and redirect the request to the Spring Bean, following is the ds.xml content
Code:
Code:
-
-
-