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

Configuring RESTDataSource

I'm a newbie in with this. Can someone help me how can I understand REST data sources like how it works, how it is made and how it connects with the database, how it works in JSON and XML. THANKS!
RED
  • 11
  • 1
0
votes
0 answers

powerbuilder target deployed as smart-client

Im new to powerbuilder 12.5, and to be honest, its my first time to use powerbuilder series as winform development medium. Back in my PB training, i have remember that since pb 11 you can deploy the pb app as smart-client. My problem is my PB App…
user3089162
  • 39
  • 1
  • 12
0
votes
3 answers

How do I fetch data from Grid in Smartclient?

How do get the underlying data from a row click on a grid? My code looks like this : isc.ListGrid.create({ ID: "countryList", width:1500, height:224, alternateRecordStyles:true, data: sampleData, fields:[ {name:"id",…
Oliver Watkins
  • 12,575
  • 33
  • 119
  • 225
0
votes
2 answers

SmartGWT, SmartClient differences

Is SmartClient same with SmartGWT? If not what's the difference between the two and which is a better tool to create a web application?
RED
  • 11
  • 1
0
votes
2 answers

launch a SQL query from the js file

in my JS file I need to do a search on the DB (select * from table where condition) and store the result in an array(multidimensional) do you have an idea how to do it ? thank you in advance
SBarney
  • 39
  • 1
  • 1
  • 11
0
votes
1 answer

create a zip file. and download it

I created a button that allows to create a zip file., the function that zips the file works correctly, but when I call her via the button (in the JS file) it crashes and it gives a blank page (I think I do not manage the output stream) would please…
SBarney
  • 39
  • 1
  • 1
  • 11
0
votes
0 answers

create a zip file. and manage the output stream

I created a button that allows to create a zip file., the function that zips the file works correctly, but when I call her via the button (in the JS file) it crashes and it gives a blank page (I think I do not manage the output stream) would please…
SBarney
  • 39
  • 1
  • 1
  • 11
0
votes
1 answer

How to develop Smart Client Application

Hi. I have several questions. I developed an application using Visual Studio 2010. The application is developed using Windows Form and the program was wrote using C#. This application needs to be run on a server. There are several clients connected…
0
votes
1 answer

how to modify the data entered when using startEditingNew ()

do you have an idea how to ask the user to create a new object without specifying the ID? ie it to me to specify ID during the development! Indeed, it is not a form, I used the startEditingNew () function here is the code : isc.ListGrid.create({ …
SBarney
  • 39
  • 1
  • 1
  • 11
0
votes
1 answer

how to fill a dropdown list from a listGrid

I have a dropdown list that should contain object types, and I have a listGrid which contains all types with icones. Can i transfer the elements of this listGrid to the dropdown list? the getData() is it a good idea ? thank you in advance
SBarney
  • 39
  • 1
  • 1
  • 11
0
votes
1 answer

IE8 took longer time to display results for Smartclient app

I am using IE8 browser for running my app which is built using SmartClient framework. This particular issue which I am facing is performance related. Steps : 1) I search a keyword 2) REST call returns results and they are displayed on browser 3) But…
0
votes
2 answers

What does SmartClient have to do with SmartGwt?

I'm attempting to get a simple SmartGWT app running(I have the GWT toolkit and SDK installed in Eclipse). I've tried simple tutorials such as this one... http://hilloldebnath.byethost3.com/2009/08/29/smartgwt-a-getting-started-guide/ When I…
restin84
  • 115
  • 1
  • 1
  • 8
0
votes
2 answers

DataSource with customSQL

I want to do a join between 3 tables using a SQL query, Could you correct my syntax or give me the right syntax please ?my application does not start even with this mistake! I Thank You in advance here is my code:
SBarney
  • 39
  • 1
  • 1
  • 11
0
votes
1 answer

Define advanced criteria for join tables in smartclient grid component for Openbravo ERP

I'm newbie in a OpenBravo ERP system, so I'm sorry if I posted an obvious question. I have created a custom MDI view in Openbravo ERP, added some input field for filtering product's name in Smarclient's listgrid which contains Orders. I have created…
user2563562
  • 13
  • 1
  • 5
0
votes
1 answer

Smartclient ListGrid RestDataSource not Populating

Code: isc.RestDataSource.create({ ID: "restDS", dataFormat: "xml", fetchDataURL: "http://192.168.1.21:8282/uom/username=vikash%7C214057357158656/password=gbadmin/ModifiedOn=0", fields: [ {name:"UOMId"}, …