Yours answer was
Hello Jarek,
For future reference, emailing a .pdf is the worst possible format for a bug report or question.
The best approach is to post to the SmartClient Forums with the SmartClient.com account that has support - this causes an immediate alert to the support team, whereas emails do not, and require manual verification of your purchase which will slow processing. The forums are the best approach for non-confidential questions like these (which obviously do not contain confidential information despite being marked that way).
Issue Reports:
#1 The correct call is ListGrid.setFieldIcon(). Note that behavior here doesn't differ between editions - the framework code is literally exactly the same. Something else you changed caused a difference in behavior.
#2 Ellipsis is a native behavior and Firefox has a number of bugs in this area. In 4.0 we are introducing some workarounds to make ellipsis work in Firefox, but these will not be patched onto 3.1 (it's not a framework bugfix).
#3 Since there presumably could be 10s of thousands of messages, we would not recommend adding an expand all feature that actually tries to expand all messages.
You could either:
a. expand just visible rows - use getVisibleRows() to find out which are visible
b. switch to recordComponents with recordComponentPoolingMode:"recycle" enabled, and add your own expand/collapse controls (don't use the built-in expansion feature)
Questions:
#1 You can do this through the Internationalization system by replacing these string constants in the English locale. See the Internationalization overview for details.
http://www.smartclient.com/smartgwte...docs/I18n.html
#2 Call filterBuilder.setCriteria() to populate the FilterBuilder with default criteria
But
In reply to answer :
#1 You can do this through the Internationalization system by replacing these string constants in the English locale. See the Internationalization overview for details.
http://www.smartclient.com/smartgwte...docs/I18n.html
I cannot see the class, only interface, so I did:
1.png
2.png
3.png
It is not working, what do I missed ?
In reply to answer
#2
I don’t know if you understand me well about my issue:
No matter which field I would take, I want it to start with operator “contains” chosen. In normal case I would use default value for SelectItem, but how to access it inside filter builder
Jarek
Hello Jarek,
For future reference, emailing a .pdf is the worst possible format for a bug report or question.
The best approach is to post to the SmartClient Forums with the SmartClient.com account that has support - this causes an immediate alert to the support team, whereas emails do not, and require manual verification of your purchase which will slow processing. The forums are the best approach for non-confidential questions like these (which obviously do not contain confidential information despite being marked that way).
Issue Reports:
#1 The correct call is ListGrid.setFieldIcon(). Note that behavior here doesn't differ between editions - the framework code is literally exactly the same. Something else you changed caused a difference in behavior.
#2 Ellipsis is a native behavior and Firefox has a number of bugs in this area. In 4.0 we are introducing some workarounds to make ellipsis work in Firefox, but these will not be patched onto 3.1 (it's not a framework bugfix).
#3 Since there presumably could be 10s of thousands of messages, we would not recommend adding an expand all feature that actually tries to expand all messages.
You could either:
a. expand just visible rows - use getVisibleRows() to find out which are visible
b. switch to recordComponents with recordComponentPoolingMode:"recycle" enabled, and add your own expand/collapse controls (don't use the built-in expansion feature)
Questions:
#1 You can do this through the Internationalization system by replacing these string constants in the English locale. See the Internationalization overview for details.
http://www.smartclient.com/smartgwte...docs/I18n.html
#2 Call filterBuilder.setCriteria() to populate the FilterBuilder with default criteria
But
In reply to answer :
#1 You can do this through the Internationalization system by replacing these string constants in the English locale. See the Internationalization overview for details.
http://www.smartclient.com/smartgwte...docs/I18n.html
I cannot see the class, only interface, so I did:
1.png
2.png
3.png
It is not working, what do I missed ?
In reply to answer
#2
I don’t know if you understand me well about my issue:
Code:
import com.smartgwt.clinet.i18n.SmartGwtMessges public interface CustomizedSgwtMessages extends SmartGwtMessges { @Override public string operators_equalsTitle(); @Override public string operators_iEqualsTitle(); }
Jarek
Comment