Quantcast
Channel: SmartClient Forums
Viewing all 4756 articles
Browse latest View live

Vertical cell alignment problem in list grid.

$
0
0
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.

Attached Images
File Type: png ListGridVerCellAlignProblem.png (14.3 KB)

Issues while exporting content with pound(£) to CSV file

$
0
0
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

DateChooser - Strange behaviour in FireFox 16.0.2

$
0
0
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

Attached Images
File Type: gif Capture.GIF (60.1 KB)

Layouting issues

$
0
0
I added a minimalistic example of the problem as code-snippet below, and the result as attachment.

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:

package org.yournamehere.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.shared.HandlerManager;
import com.google.gwt.user.client.ui.RootPanel;
import com.smartgwt.client.types.Alignment;
import com.smartgwt.client.types.VerticalAlignment;
import com.smartgwt.client.widgets.layout.VLayout;
import com.smartgwt.client.widgets.Label;
import com.smartgwt.client.widgets.layout.HStack;

public class Entry implements EntryPoint {

    public Entry() {
    }

    @Override
    public void onModuleLoad() {
        final GWTServiceAsync service = GWT.create(GWTService.class);
        final HandlerManager eventBus = new HandlerManager(null);

        RootPanel.get().add(new TestLayout());
    }
   
    public class TestLayout extends VLayout {
        private final Label label;
       
        public TestLayout() {
            setWidth("100%");
            setHeight("100%");
            setAlign(VerticalAlignment.TOP);
            label = new Label("test");
            HStack top = new HStack();
            top.setBackgroundColor("lightgrey");
            top.setHeight("25px");
            top.setWidth("100%");
            top.setAlign(Alignment.RIGHT);
            top.addMember(label);
           
            addMember(top);
        }
    }

}

Please let me know if you need any further information.

Attached Images
File Type: png Untitled000.png (36.8 KB)

Issue in getFetchDataURL() API with “SmartGwt4.0P”.

$
0
0
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() it’s retuning null and it’s 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.

Attached Files
File Type: java AbstractBaseDS.java (3.8 KB)
File Type: java SampleDS.java (1.5 KB)

Tab indexing not working with MultiComboBoxItem

$
0
0
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

Problem with setShowDisabledIcon()

$
0
0
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

ListGrid : ShowGroupSummary + CanDelete + hover = deleted Skin loose

$
0
0
Hi

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:

public class Application implements EntryPoint {
    public static ListGridRecord createRecord() {

        final ListGridRecord record = new ListGridRecord();
        record.setAttribute("area", Random.nextInt());
        return record;
    }

    private ListGridRecord[] records = new ListGridRecord[] { createRecord(), createRecord(), createRecord(), createRecord() };

    @Override
    public void onModuleLoad() {
        ListGrid countryGrid = new ListGrid();
        countryGrid.setSize("500", "500");
        countryGrid.setCanRemoveRecords(true);
        countryGrid.setDeferRemoval(true);
        countryGrid.setShowGridSummary(true);
        countryGrid.setShowGroupSummary(true);
        countryGrid.setCanEdit(true);
        ListGridField areaField = new ListGridField("area", "area");
        areaField.setShowHover(false);
        areaField.setShowGroupSummary(true);
        areaField.setSummaryFunction(new SummaryFunction() {
            @Override
            public Object getSummaryValue(Record[] records, ListGridField field) {
                return records.length + " items";
            }
        });

        countryGrid.setFields(areaField);
        countryGrid.setData(records);
        countryGrid.draw();
    }
}


Attached Images
File Type: jpg PrtScr capture_13.jpg (23.3 KB)

Can't propagate exception from SC.ask BooleanCallback

$
0
0
I had a button display a dialog using SC.ask with a BooleanCallback. I noticed nothing was happening so I ran the debugger. I followed it until I found an exception was being thrown that was preventing my code from ever running. I had no idea the exception was being thrown because it was getting swallowed somehow--no error popup or anything in the console/log. I wrote a test case below...

Code:

public void onModuleLoad() {
  SC.ask("asdf", new BooleanCallback() {
    @Override
    public void execute(Boolean value) {
      throw new NullPointerException();
    }
  });
}

SmartGWT Power 4.0 10-5-2013

Grid add modify and delete

$
0
0
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!

mouse right click in the listgrid

$
0
0
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.

Upgrade from SmartGWT 3.1 to 4.1d

$
0
0
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?

Issue on SmartGWT 4.1d + Spring: no response at server side

$
0
0
Dear all,

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:

<DataSource
    ID="Account"
    serverType="generic"
>

    <fields>
        <field name="accountNo" type="text" title="Account No." length="6" required="true" primaryKey="true"/>
        <field name="accountType" type="text" title="Account Type" length="25" required="true">
            <valueMap>
                <value ID="I">Individual</value>
                <value ID="C">Corporate</value>
            </valueMap>
        </field>
        <field name="firstName" type="text" title="First Name" length="100" required="true"/>
        <field name="lastName" type="text" title="Last Name" length="40"/>
    </fields>

    <serverObject lookupStyle="spring" bean="accountServer"/>   
</DataSource>

And following is the web.xml
Code:

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">

    <!-- standard spring configuration -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
 
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener> 

    <!-- The IDACall servlet handles all Built-in DataSource operations -->
    <servlet>
        <servlet-name>IDACall</servlet-name>
        <servlet-class>com.isomorphic.servlet.IDACall</servlet-class>
    </servlet>

    <!-- The DataSourceLoader servlet returns Javascript representations of the dataSources whose
        ID's are passed to it - it is an alternative to using the <loadDS> JSP tag -->
    <servlet>
        <servlet-name>DataSourceLoader</servlet-name>
        <servlet-class>com.isomorphic.servlet.DataSourceLoader</servlet-class>
    </servlet>

    <!-- The FileDownload servlet downloads static files, like a webserver -->
    <servlet>
        <servlet-name>FileDownload</servlet-name>
        <servlet-class>com.isomorphic.servlet.FileDownload</servlet-class>
    </servlet>

    <!-- ISC init: initializes ISC framework -->
    <servlet>
        <servlet-name>Init</servlet-name>
        <servlet-class>com.isomorphic.base.Init</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
     
    <servlet>
        <servlet-name>HttpProxy</servlet-name>
        <servlet-class>com.isomorphic.servlet.HttpProxyServlet</servlet-class>
    </servlet>

    <!-- The PreCache servlet initializes when the servlet engine starts up and pre-loads
        data need for all client requests.  This is optional, and improves performance
        of the first few page requests.  PreCache cannot be invoked by a browser, because
        there is no "servlet-mapping" defined for it. -->
    <servlet>
        <servlet-name>PreCache</servlet-name>
        <servlet-class>com.isomorphic.servlet.PreCache</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>

    <!-- RPCManager uses this URL by default for Built-in DataSource operations -->
    <servlet-mapping>
        <servlet-name>IDACall</servlet-name>
        <url-pattern>/showcase/sc/IDACall/*</url-pattern>
    </servlet-mapping>

    <!-- Built-in DataSource operations backcompat -->
    <servlet-mapping>
        <servlet-name>IDACall</servlet-name>
        <url-pattern>/showcase/sc/IDACall.aspx/*</url-pattern>
    </servlet-mapping>

    <!-- DataSourceLoader requests -->
    <servlet-mapping>
        <servlet-name>DataSourceLoader</servlet-name>
        <url-pattern>/showcase/sc/DataSourceLoader</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>HttpProxy</servlet-name>
        <url-pattern>/showcase/sc/HttpProxy/*</url-pattern>
    </servlet-mapping>

    <!-- Use FileDownload servlet to download all static content that's part of the skin, such as
        image files, so we can set Expires headers and other cache control directives.  In a
        production deployment, you'd want to use a webserver such as Apache to do this. 
    -->
    <servlet-mapping>
      <servlet-name>FileDownload</servlet-name>
      <url-pattern>/showcase/sc/skins/*</url-pattern>
    </servlet-mapping>

    <!-- serve ISC modules compressed, with expires headers -->
    <servlet-mapping>
        <servlet-name>FileDownload</servlet-name>
        <url-pattern>/showcase/sc/system/modules/*</url-pattern>
    </servlet-mapping>

    <!-- serve ISC development modules compressed, with expires headers -->
    <servlet-mapping>
        <servlet-name>FileDownload</servlet-name>
        <url-pattern>/showcase/sc/system/development/*</url-pattern>
    </servlet-mapping>

    <!-- server skin assets with expires headers -->
    <servlet-mapping>
        <servlet-name>FileDownload</servlet-name>
        <url-pattern>/showcase/sc/system/reference/skin/*</url-pattern>
    </servlet-mapping>

    <!-- General config -->
    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>

    <jsp-config>
        <!-- Isomorphic JSP tags -->
        <taglib>
            <taglib-uri>isomorphic</taglib-uri>
            <taglib-location>/WEB-INF/iscTaglib.xml</taglib-location>
        </taglib>
    </jsp-config>

    <mime-mapping>
        <extension>manifest</extension>
        <mime-type>text/cache-manifest</mime-type>
    </mime-mapping>

        <!-- Default page to serve -->
        <welcome-file-list>
                <welcome-file>ShowCase.html</welcome-file>
        </welcome-file-list>

</web-app>



What's missing in config for SmartGWT 4.1 case?

How to set Cookies in HTMLPane

$
0
0
We are trying to set Cookies into HTMLPane

1. Please find the example in java.net.* API Setting a cookie value in a request:

Values must be set prior to calling the connect method (http://www.hccp.org/java-net-cookie-...tting_values):

a. Values must be set prior to calling the connect method:

URL myUrl = new URL("http://www.hccp.org/cookieTest.jsp");
URLConnection urlConn = myUrl.openConnection();

b. Create a cookie string:

String myCookie = "userId=igbrown";

c. Add the cookie to a request:
Using the setRequestProperty(String name, String value); method,
we will add a property named "Cookie",
passing the cookie string created in the previous step as the property value.

urlConn.setRequestProperty("Cookie", myCookie);

d. Send the cookie to the server:
To send the cookie, simply call connect() on the URLConnection for which we have added the cookie property:

urlConn.connect()

Please let us know how to set in SmartGWT HTMLPane
HTMLPane eWebHtmlPane = new HTMLPane();
eWebHtmlPane.setContentsType(ContentsType.PAGE);
eWebHtmlPane.setContentsURL(WebPageURL);

How do i use javascipt style="ime-mode:active" in DynamicForm.fields?

$
0
0
Hello everyOne!

1. isc_version=SNAPSHOT_v9.1d_2013-12-04.js
2. browser: IE8

I want to use javascript's ime-mode to dynamicForm's fields.
How can i do it?

var inputForm = isc.DynamicForm.create({
width:"100%",
height: "*",
cellPadding:0,
cellBorder:0,
numCols:6,
border: "1px solid gray",
fields:[
{name:"MENU_SEQ", title: "메뉴코드", editorType:"text",editorProperties : { disabled:true },length:"10" },
{name:"UPPER_MENU_SEQ", title: "상위코드", editorType:"text",editorProperties : { width:"100%" ,disabled:true},length:"10"},
{name:"USE_AT", title: "사용여부" ,editorType: "radioGroup", displayField:"LABEL", valueField:"VALUE",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM",title: "메뉴명(한글)", colSpan:"3" ,editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"MSSAGE_USE_AT",title: "쪽지사용",editorType: "radioGroup",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM_EN",title: "메뉴명(영어)", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"SMS_USE_AT",title: "SMS사용" ,editorType: "radioGroup",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM_CH",title: "메뉴명(중국)", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"EMAIL_USE_AT",title: "이메일사용",editorType: "radioGroup",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM_JP",title: "메뉴명(일본)", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"PARAMTR",title: "파라미터",editorType:"text",length:"300"},
{name:"MENU_URL",title: "메뉴URL", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"300"},
{name:"SORT_ORDR",title: "정렬순서",editorType:"text",length:"6"},
{name:"HPCM_URL",title: "도움말URL", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"200"},
{name:"MNGR",title: "관리자",editorType:"text",length:"30"},
{name:"PROCS_ID", title: "프로세스ID", editorType:"text",length:"20"},
{name:"REGLTN_ID", title: "규정ID", editorType:"text",editorProperties : { width:"100%" },length:"10"},
{name:"MNSG_DEPT", title: "주사용부서" ,editorType:"text",length:"100"},
{name:"PROGRM_SPORT_SKLL", title: "지원기능", editorType:"text",length:"30"},
{name:"MULTI_CHECKBOX", title: "처리구분", editorType:"multiCheckBox", colSpan:"3",editorProperties : { vertical:false } ,valueMap: ["예", "아니오"]},
{name:"MENU_DETAIL_DC", title: "상세설명", editorType:"text", colSpan:"5",editorProperties : { width:"100%" },length:"300"},
{name:"RM", title: "비고", type:"text", colSpan:"5",editorType:"text",editorProperties : { width:"100%" },length:"2000"},
],

// Function to actually find items
findItems : function (categoryName) {
},
itemChange: function (item,newValue,oldValue){
module.formItemChange(item,newValue,oldValue);
}

});

Validation Error Dialog

$
0
0
Hi,

I've setup a server side validator like this:

Code:

<field name="CODE" type="text" title="$code" escapeHTML="true" required="true">
                <validators>
                                <validator type="isUnique" requiresServer="true" errorMessage="This code is already used."/>
                        </validators>
</field>

If I add a new record using the grid's addNewRecord() method, giving an already used 'CODE', the validator works as expected and triggers a warning.

My problem is that the displayed warning is not really user friendly (JSON Like display) and I would have expected to just have the custom error message I've configured in the DS.
Is it possible to have this without the need to enable the "willHandleErrors" for every single DSRequest I issue ?

Many Thanks,

Thomas

PS: SmartGwt 4.0p

Picklist entering through keyboard has issue

$
0
0
Hi,

In “SmartGwt 3.1P” when the user enters 2 digits values through keyboard for picklist its not getting selected what it is entered. Picklist contains 1 to 31 integer values. So if we enter 12 through keyboard its selected 1 and later 2.
// Code used
final SelectItem selectItemMultiplePickList = new SelectItem();
selectItemMultiplePickList.setTitle("Select Multiple (PickList)");
selectItemMultiplePickList.setMultiple(true);
selectItemMultiplePickList.setMultipleAppearance(M ultipleAppearance.PICKLIST);

LinkedHashMap<Integer, Integer> map=new LinkedHashMap<Integer, Integer>();

for (int i = 0; i < 31; i++) {

map.put(i + 1, i + 1);
}

selectItemMultiplePickList.setValueMap(map);
selectItemMultiplePickList.setDefaultValue(map.get (1));

//Code finished

We migrated from “SmartGwt 3.1P” to “SmartGwt 4.0P” even still the issue exists.

Please let us know your comments.

Attached Files
File Type: java CheckBox.java (1.5 KB)

Initial query in ListGrid

$
0
0
IE.8
SmartClient v.9.0

Hi Isomorphic,
I have a ListGrid without params. I can watch in the Developer Console, the grid datasource return 74 elements, but the grid doesn't show any.
How I can refuse this query? My ListGrid shouldn´t create any query excepts on demand
Thanks,

Old problem already fixed, get back in new IExplorer version

$
0
0
We just have fixed a row draw trouble using the solution you pointed at this thread:

http://forums.smartclient.com/showthread.php?t=13761&page=2

using the solution you pointed that moment, setRecordComponentHeight.

Well, all works fine until some people have updated his navigator's version, and now runs our application on a Internet Explorer version 11.0.9600.16476
With new IExplorer version, we get the same problem again.
Is there any package provided to fix it?
Thanks in advance and merry Christmas.


We are working under:
v9.0p_2013-08-20/PowerEdition Development SC and IExplrorer 10.0.9200 navigator, Eclipse Helios and Tomcat 7.0.28

How to get Fields in TileGrid

$
0
0
Hi,

How could we get TileGrid Fields. Like what we have in ListGrid.

Regards,
DSingh
Viewing all 4756 articles
Browse latest View live