[Logo] Enterprise Client Community
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Messages posted by: heyl  XML
Profile for heyl -> Messages posted by heyl [267] Go to Page: Previous  1, 2, 3  ...  16, 17, 18
Author Message
that would be great,

Thanks
Frauke
Hi Björn,

would it be possible to provide a
BaseActionEvent.EVTYPE_FIXGRID_ROWDESELECT
event?

Frauke
Of course an URL, that would be fine!
I didn't really mean a path, was just thinking in terms of my testing scenario.

Have a nice weekend!

Frauke
Hi Björn,

is it necessary to load the file as a hexstring before passing it to the download component?
It might be quite big: it is a zip file containing images.

Is it possible for your component to load it from the server file system?
So I only have to pass the source path?

In fact does it make any difference who of us reads the data, according to the amount of data kept in memory?
At least we should assure the String is only read once and will not be held multiple times.

Frauke

And when will it be available?

Frauke
Aha, wouldnt beleave it.....

Now seriously, can you give me an example please?

Frauke
Hi Björn,

no, nothing special on my mind,
but what on earth do you mean?
Pass the file where?

Frauke
Hi Björn,

is file download already supported?
If yes, how can I do it?
It would be wonderful, if I had some kind of link that I can pass an url....
(like CIS <ihtml> tag)


Frauke
Hi Björn,

well thats not what I wanted....
I would like to have radiobuttons spanning all rows of the grid to make sure only one is selected (one radio button per row).

So I wanted to use the same group for all rows and attach a value property that is define outside of the row objects (as private member of the surrounding bean). And that is not possible?

If not, I may use a trick using your solution and deselect all other rows manually if I click one. Than they just look like one radio button group.

Frauke
Hi everybody,

how can I use radiobuttons in a flexgrid?
It does not work, m_checkedReason never receives a valid value (which I expect to be a "reasonId")
What's wrong?

I tried this way:

<t:fixgrid id="g_17" emptycolor="!null" height="100%" objectbinding="#{d.cardstatus.reasons}" sbvisibleamount="20" suppressheadline="true" width="100%" >
<t:gridcol id="g_18" width="30" >
<t:radiobutton id="g_19" group="selectReason" refvalue=".{reasonId}" value="#{d.cardstatus.checkedReason}" />
</t:gridcol>
<t:gridcol id="g_20" text=".{name}" width="100%" >
<t:field id="g_21" text=".{name}" />
</t:gridcol>
</t:fixgrid>

In the bean it looks like this:

FIXGRIDListBinding<Reason> m_reasons = new FIXGRIDListBinding<Reason>();
public FIXGRIDListBinding<Reason> getReasons() { return m_reasons; }

String m_checkedReason;
public String getCheckedReason() { return m_checkedReason; }
public void setCheckedReason(final String checkedReason) { m_checkedReason = checkedReason; }

public class Reason extends FIXGRIDItem {
public Reason(final String reasonId, final String name) {
m_reasonId = reasonId;
m_name = name;
}
private String m_reasonId;
public String getReasonId() { return m_reasonId; }

private String m_name;
public String getName() { return m_name; }

public void onRowSelect() {
}
}

Best regards
Frauke
Hi everybody,

I am still not able to set the text property in a dynamically created ComboBox.

This is my code:

COMBOBOXComponentTag ct = new COMBOBOXComponentTag();
ct.setValuetextmode("TEXT");
ct.setText("#{d.test.text}");

The object binding is correct, I double checked that,
and I am using the new Valid Values Binding.

I am using version
setup_1_1_20080114.exe
Hi everybody,

how can I load unicode text in the controls?

I can enter the text in the designer but it is not displayed in the controls.
See screen shot for example.
If I create the text dynamically in the bean (read it from the database for instance) and bind it to the fields it will display in the label but not in the field component.


 
Profile for heyl -> Messages posted by heyl [267] Go to Page: Previous  1, 2, 3  ...  16, 17, 18
Go to:   
Powered by JForum 2.1.6 © JForum Team