The proprietary app designer `Opentext Documentum xCP` calls Sencha Cmd under the hood when it builds a custom theme for a web app.
In the theme there's a map of colors by name and each color is a...
Type: Posts; User: basinilya
The proprietary app designer `Opentext Documentum xCP` calls Sencha Cmd under the hood when it builds a custom theme for a web app.
In the theme there's a map of colors by name and each color is a...
Is there a mechanism to prevent the window shadow from overflowing the container ViewSize?
Because from what I see, when you call window.maximize(), scrollbars appear.
There's the method...
58145
If I dynamically add an initially invalid text field into a hidden container and then show the container, the error icon is not displayed.
Looks like the problem is in the function "onLabelRender"....
Here's my test code that creates a resizible textarea:
Ext.create('Ext.form.field.TextArea', {
renderTo: document.body,
name: 'aaa',
fieldLabel: 'Aaa'
});
...
I have a reference to the DOM element that was created inside a component that is capable of rendering arbitrary HTML. How do I get the component containing this element?
function...
Hi.
We're using the Grid Panel and I was asked to add quick access to the column hider menu which is normally a submenu of the grid header.
The first thing I tried was to create a button and a new...
I need a deep copy of List<BaseModelData> . This method is supposed to create it:
@SuppressWarnings("unchecked")
public static <T> T cloneSerializable(T o) {
try {
...
Hi. After I added column grouping, the grid header cells shifted:31078
Although the TDs have explicit width, IE doesn't honor them for some reason.
Here's simplified example:
header:...
Thanx. Solved.
I have gxt grid in my web app. I want the caption of one column header to span over multiple columns.
|column1 |column2 |loooooooooooong text|column5 ...
I have a comboBox cell editor with some predefined values. The grid is loaded from a database and the cell's value can be just any, not only those listed in the combo box.
The problem is: a user...
Hi. I need to position form fields inside fixed-width columns. When the first column is full, they go to the next column. If the container height changes, the controls should be re-positioned. If...