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

Run a function on page load using SmartClient

When the page loads, I want to hide some buttons based on user permissions. I have a function that does what I need, but currently I have to press a button to call it. How to run a applyUserPermissions function right after page loads using…
Tadija Bagarić
  • 2,495
  • 2
  • 31
  • 48
0
votes
1 answer

How to make selection on drop down list (DynamicForm) using JavaScript in SmartClient?

Here is a drop down list in SmartClient: http://www.smartclient.com/#dropdownGrid. I want to make a selection using JavaScript. Like, I run some JavaScript in console, and the drop list will select a specific item. I did some research, found a code…
zhm
  • 3,513
  • 3
  • 34
  • 55
0
votes
2 answers

SmartClient ListGrid boolen field without editMode(double click)

I have smartclient ListGrid with some columns. ListGrid has some text fields with edit mode (double click to enter) and boolean fields. All I need to do is disable editMode for boolean fields (disable double click) and still enable normal…
Samoth
  • 460
  • 1
  • 11
  • 30
0
votes
1 answer

FormItem setFieldTitle method

Does DynamicForm or FormItem have a method to set a field title? Currently I'm doing something like this var fields = myForm.fields; fields[0].title = "a brand new title"; myForm.setFields(fields);
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69
0
votes
1 answer

How to create new Object or Cloning of ListGrid in Smart Client

I want to create an object of ListGrid component in Smart Client. isc.ListGrid.create({ ID: "countryList", width:500, height:224, top:50, alternateRecordStyles:true, fields:[ {name:"countryCode", title:"Flag", width:50, type:"image",…
0
votes
2 answers

How to implement smart parts Prism

I am unable to find a way to implement Smart Parts like SCSF, in wpf prism, can any one suggest a way how to do it, links, articles, appriciated. Thank you in advance, :)
Milan Solanki
  • 1,207
  • 4
  • 25
  • 48
0
votes
2 answers

Validate Form on Change ONLY

Because much of our imported data technically has validation errors, users are unable to update fields without first correcting previously entered bad data. This wouldn't be a problem except that many times this user doesn't have the information…
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69
0
votes
1 answer

ComboBoxItem not clearing unknown value on blur

To Start, here is my ComboBoxItem field { name: "State", type: "ComboBoxItem", canEdit: true, valueMap: { WI: "Wisconsin", IL: "Illinois", MN: "Minnesota", MI: "Michigan" }, addUnknownValues:…
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69
0
votes
2 answers

The type or namespace name 'PersistentBag' does not exist in the namespace 'NHibernate.Collection'

I'm upgrading a Windows SmartClient solution from nHibernate 2.2 to 4.0, using NuGet in Visual Studio 2013. On this line: sb.Append ("=" + ((NHibernate.Collection.PersistentBag) state[i]).Count.ToString() + " items"); I get this error: The type or…
Al Lelopath
  • 6,448
  • 13
  • 82
  • 139
0
votes
1 answer

DynamicForm validation - accept Validator_A OR Validator_B

My DynamicForm field has 2 validators for zip code [ { type: "mask", errorMessage: "Invalid postal code", mask: "^(\\s*\\d{5}\\s*)(\\s*-?\\s*\\d{4}\\s*)?$", transformTo: "$1-$2" }, { type: "mask", errorMessage: "Invalid postal code", mask:…
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69
0
votes
1 answer

Open a TabSet to a specific Tab

By default the first tab becomes selected when a TabSet is drawn I'm curious to know if it's possible to instead set the initial tab to be tab at index 2, 3, etc.
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69
0
votes
1 answer

SmartClient object always have extra data

I am storing advanced criteria to my database. But get criteria always fetch smartClient data as well. Is there any way to exclude those information while saving to database and atach it from browser onloading data from database. It just extra load…
extjs user
  • 263
  • 7
  • 17
0
votes
1 answer

ListGrid column change event

I have requirement to create a custom ListGrid, where user can show, hide, filter a column. also can change width and reOrder column and even color it and sort direction. I know that list grid provide all this facility to user. But I have to save…
extjs user
  • 263
  • 7
  • 17
0
votes
1 answer

Microsoft Smart Client Composite UI

I have been trying to run the project given in this MSDN Magazine but am unable to do it. There is reference to Microsoft.IntegratedDesktop.Controls.StackBar namespace in one of the project but I'm not able to find the DLL(IDF.Controls.DLL as it is…
Soham Dasgupta
  • 5,061
  • 24
  • 79
  • 125
0
votes
1 answer

how to use `filterEditorValueMap`

I have a listgrid that has a custom column PermissionLevel to illustrate the value of the column Value. I want to give users the ability to filter. So.. I set the filterEditorType as "SelectItem" populated it with the different graph lengths and…
stackoverfloweth
  • 6,669
  • 5
  • 38
  • 69