Questions tagged [smartclient]

Smart Client helps you to build and maintain more usable, portable, efficient web applications faster, propelled by an open, extensible stack of industry-tested components and services.

SmartClient provides an end-to-end application architecture, from UI components to server-side transaction handling. The examples included with SmartClient demonstrate the simplicity that can only be achieved by a framework that addresses both server- and client-side architectural concerns to deliver globally optimal solutions. SmartClient‘s UI components are carefully designed to maximize responsiveness and minimize server load, and SmartClient‘s server components are designed around the requirements of high-productivity user interfaces. Even if you adopt only part of the SmartClient solution, you benefit from an architecture that takes into account the entire problem you need to solve, not just a part of it. Every integration point in the SmartClient platform has been designed with a clear understanding of the requirements you need to fulfill, and, the solutions built into SmartClient provide a blueprint for one way of meeting those requirements.

159 questions
0
votes
1 answer

ListGrid.updateData() for multiple records

Is there an smartClient solution to update multiple? saveAllEdits didn't send any update request to the server, updateData works on a single Record object, if I try to send an array it ends up at the server as 0:{ name:"example", …
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69
0
votes
1 answer

Smartclient have any deferred and promise

I have sendRequest using RPCManager in smartclient. but I have to structure chaining execution. I read on internet about jQuery deferred and promise function. But I wonder whether smartclient support execution in sequential task. Thank you.
extjs user
  • 263
  • 7
  • 17
0
votes
1 answer

Multiple Modal Windows

I want to open this window on top of an existing almost full screen modal. The issue is that the modal mask doesn't cover the parent modal and the modal behind the parent is twice as dark. Is there a solution to this? isc.Window.create({ height:…
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69
0
votes
1 answer

on/off switch in smartclient

I want to desing on/off switch in my project. I use Smartclient for javascript and html5, css. Is there any way I can provide user with option to on and off. Like we have in website or mobile??
extjs user
  • 263
  • 7
  • 17
0
votes
1 answer

Add record in listGrid with variable

I am adding record in grid using startEditingNew method as below. var COLUMN_NAME = { name : "user_name", lastname : "user_surname", age : "user_age" }; addDataToGrid : function (name, lastname, age){ MyGrid_Grid.startEditingNew({ …
extjs user
  • 263
  • 7
  • 17
0
votes
1 answer

Does Isomorphic SmartClient have a callback that fires when a user selects a pick list record on a form text item?

I am developing a web application using Isomorphic SmartClient. I am searching for a callback fired when the user selects a pick list record from a DynamicForm TextItem pick list, but I am unable to find one. Does a callback for this event exist in…
0
votes
2 answers

How to limit the textarea size

I need to limit the textarea to 4 characters... my current javascript { name : "pin", title : "PIN", align:"center", textArea:"isc.TextArea.setCharacterWidth(4)" } Can anyone tell me how can I do that please?
user3863488
  • 227
  • 1
  • 13
0
votes
2 answers

How to add UTF-8 support to SmartGWT application

I am implemtnting a smartgwt application for a client that need support to utf-8 language(RTL). Now I have a listgrid which takes in persian text and when i try to save it to my mssql 2008 database, it saves it like this ????? instead of the perisan…
ZAJ
  • 793
  • 3
  • 23
  • 50
0
votes
1 answer

Smart Client : List Grid?

While setting data into List grid. Some extra space is coming after last record. isc.CustomListGrid.create({ dataSource: "DeviceDiscoveryDataSource", ID:"deviceDiscoveryListGrid", autoDraw: false, //showAllRecords:…
0
votes
1 answer

Smart Client, as opposed to Thin/Thick Client- Examples

What is a Smart client, as opposed to a Thin or Thick client, and what would be a good example(s) to exemplify this concept?
N Altun
  • 95
  • 1
  • 2
  • 9
0
votes
1 answer

Smartclient get all listgrid records

I am using smartclient. I am having two listgrids that i drag and drop items to a third one. How can i get all records that are on the third one, when i click a button or a certain event is happening. I have tried multiple ways such as loops,…
0
votes
1 answer

how to filter (or fetch) a listGrid when autofetchData: false

I have a ListriGrid, I wanted to put autoFetchData : false because I have a lot of data and I don't want to load it from the launch of the application, but it has caused me problems in the filter list !! example : ListGrid.fetchData ({id: 1}) it…
SBarney
  • 39
  • 1
  • 1
  • 11
0
votes
0 answers

Why does document.getElementById function returns something unrelated to arguments?

I am trying to retrieve DOM element and pass it to third-party js script. I'm running javascript from java and first I use document.getElementById function to find it and then use it in another function. So, for instance, ID (which is dynamic) is…
Danio
  • 1,064
  • 1
  • 11
  • 25
0
votes
2 answers

Close smartpart view

I am developing windows Forms application, for this i am using SmartClient. Here i click workspace close('X') event at the time i want to display messageBox based on user input (OK/Cancel) i have to decide pane has to be close or not.
Ravi
  • 1,263
  • 6
  • 17
  • 23
0
votes
1 answer

Stop Smart Client from adding an Array class element to my arrays

I'm currently building a project at work, requiring me pulling in an array of objects, and pinning them on a map. I'm storing my markers in an array, so that I can reset the map when a user searches for different criteria. This was all working…
hamhut1066
  • 406
  • 3
  • 13