| Author |
Message |
|
|
Yes, we will add these features in our next release.
Thanks for your interest.
|
 |
|
|
onstarteditcell is fired after cell enters in edit mode so your method won't work.
GridCell was designed to use same edit control for all rows for a column But to specify different edit controls for each row you can try two aproaches:
- use a different datarow for each row type. In this case if you define three datarows and a datamodel with 2 rows gridtable will render 6 rows on the client.
- use facet GridTable.EDIT_FACET_NAME to specify custom edit controls in grid cell like this :
Basically you put different controls that will render only if a condition is true for a particular row.
|
 |
|
|
|
Please be more specific here. For getting row index gridtable has getRowIndex method. There is no method for getting column index. GridTable can have one or more datarows and each datarow can have one or many gridcells.
|
 |
|
|
For now we don't support changing charset in ajax. We are using encoding iso-8859-1.
Regarding getting edit value, GridtTable has two methods :
getEditRowIndex() - return row index that was edited
getEditGridCell() - return GridCell that was edited
To get edit value in your processCellStartEdit there are two cases:
- grid cell use defaul edit control :
gridTable.getEditGridCell().getValue()
- grid cell use a custom edit control specified in facet GridTable.EDIT_FACET_NAME :
gridTable.getEditGridCell().getFacet(GridTable.EDIT_FACET_NAME).getValue()
|
 |
|
|
You can find details about Calendar and Date Input at http://www.simplica.com/calendar.htm
Also, you can see them in action in our demo for Ecruiser Suite v1.1 Beta.
If you want to try those components, you should download the .zip for Ecruiser Suite v1.1 Beta.
Adina Mihai - Simplica Support Team
|
 |
|
|
Hello!
The DataTable component has a property called "autoResize", which is true by default. So, DataTable should resize itself when its content is smaller than specified size. That's why you noticed a resizing.
You can avoid this behavior by setting autoResize to false.
Best Regards,
Adina Mihai - Simplica Support Team
|
 |
|
|
Here is the demo .war.
We didn't receive any message that the email wasn't sent successfully, so you probably didn't receive the email because of some filter applied to your email account.
Anyway, follow the steps from above, and tell us if you had any other problems.
|
 |
|
|
Hello again!
We have fixed your issue. The root cause of this is that RAD7 over-rides the core render kit mechanism and wraps our render kits in a non-standard way.
To solve this, you should do following:
1. copy into your application ecruiser-rad-patch.jar (that we sent you by email)
2. replace in faces-config.xml the tag
<render-kit-factory> com.ibm.faces.renderkit.AjaxRenderKitFactory</render-kit-factory>
with
<render-kit-factory>ecruiser.render.AjaxECRenderKitFactory</render-kit-factory>
Good luck!
|
 |
|
|
Hi Eyal,
We are working to solve your issue, and we will send you a response as soon as possible.
Thanks for details and for your interest in our components.
|
 |
|
|