ZK - Open Source Ajax Java FrameworkZK - Open Source Ajax Java Framework

New ZK Forum Announcement

PeterKuo
29 Oct 2009 19:50:22 GMT
29 Oct 2009 19:50:22 GMT

@YADA

You're right. We have scheduled to make some minor modification to make forum more easily to read.
We appreciate your feedback.
We're collecting user feedback now, and make some style decision.
The next style change should be about 2 weeks later.

@Stephan

I agree with you. I'll discuss with my boss(es).
I listed it in our issue list.

terrytornadoTop Contributor
30 Oct 2009 03:53:17 GMT
30 Oct 2009 03:53:17 GMT

Thanks Peter.

wordy
30 Oct 2009 09:12:10 GMT
30 Oct 2009 09:12:10 GMT

@PeterKuo

Is posible that the forum permits that an user could modify his user_name? If not, maybe is possible to give all the data of an existing user to a new user?

Regards Edwin.

rex
4 Nov 2009 00:22:16 GMT
4 Nov 2009 00:22:16 GMT

I am missing the advanced search. Anyone knows where I can find it?
Also is there a way to track your own posts or receive email upon updates?

Thanks,
Rex

PeterKuo
4 Nov 2009 19:42:40 GMT
4 Nov 2009 19:42:40 GMT

@rex
no advanced search now.
Current search use like expression of sql.
Search at most 3 separate words in title, post body, and author name.
And sort it by date.

You may search your own name to track your own posts.

receive email upon updates is the feature we prepared to provide in next phase.

Azajob
10 Nov 2009 02:09:21 GMT
10 Nov 2009 02:09:21 GMT

Account attivation does not work in Firefox 3.5.4

Password reset does not work

In forum//changePasswordVerification.zul the messageDialog returns a "null" message appears in any case

terrytornadoTop Contributor
10 Nov 2009 03:18:23 GMT
10 Nov 2009 03:18:23 GMT

Thanks zkTeam

PeterKuo
10 Nov 2009 19:39:00 GMT
10 Nov 2009 19:39:00 GMT

@Azajob

I tried to register a new account,activate it and change password by using firefox3.5.
It works fine.

But if you register a new account, change password before activate, you may encounter problem while following activation for key changed.

We should block user from changing password before activation.

Azajob
11 Nov 2009 02:08:45 GMT
11 Nov 2009 02:08:45 GMT

@PeterKuo

I'm triyng to debug a little, just to help.

step-by-step

- registered a new account
- received email witch activation code (not used)
at this point I can log in the forum. If try to reply I got redirected to login page
- copy&pasted activation code provided in ff 3.5.4
Wrong Verification Key!
- copy&pasted activation code provided in opera
Wrong Verification Key!
- click on the activation link (provided via the email)
zk account accepted
On my system the default browser is konqueror, email client is kmail (kde-4.3.3)

now password reset
- used the form login/forgot your password
received a new email with a new code
- copy&paste code in konqueror and opera
got a blank page: nothing but menĂ¹ and "Mail to zkadmin@zkoss.org"
- click on the url directly from the email body
got the change password form (served by konquer my default browser as said before)
- testing passwords:
4char (mona) -> password mismatch (reported in red below passwords input boxes) and error dialog "null"
10numbers (1234567890) -> same as before
8alphanumeric (zxcv1234) -> same as before

For this test i've created a test user named "assistenza" it would be very apreciated if can wil be deleted
I suggest to to negate access to users prior to account activation, maybe this action has triggered un undiscovered bug? I'll try that route if you cancel "assistenza" user.

versionfourx
12 Nov 2009 12:12:28 GMT
12 Nov 2009 12:12:28 GMT

Greatly appreciate the new layout, excellent choice!

puneetgarg11
20 Dec 2010 04:39:42 GMT
20 Dec 2010 04:39:42 GMT

Hi,

I am facing a problem in zkoss,

The tree component can be configured to automatically generate checkboxes, its tree items by setting its attributes.

For allowing selecting a single list item only, set checkmark="true",. For allowing the selection of multiple list items, additionally, set multiple="true".
so i m using checkbox, i need to give some functonaily to checkbox, like if we click on one module the all children all selected if not the child v click dat only select.
can u tell me how v do dis.

and how v get checkbox component.
<tree id="tree" zclass="z-dottree" multiple="true" checkmark="true"> </tree>
using multiple="true" checkmark="true" ,checkbox are created.then on zul page how v get checkbox component.

Please send me respose as soon as poosible.

With Regard's
Pardeep Garg

wingchan
20 Dec 2010 20:37:17 GMT
20 Dec 2010 20:37:17 GMT

Hi Pardeep,

This is a section for Announcement.
Please post your questions under "Help" for further discussion, thanks.

Regards,
Wing

PeterKuo
21 Dec 2010 19:13:15 GMT
21 Dec 2010 19:13:15 GMT

@puneetgarg11
Please don't cross post.
Your problem is answered at
http://www.zkoss.org/forum/listComment/14797
Please focus on that thread.

vivekkumar20005
17 May 2011 07:12:48 GMT
17 May 2011 07:12:48 GMT

Hi,

I am creating a listbox using zul and composer.

my zul file contains
<listbox id="vendorGridId" vflex="true" selectedItem="@{vendorProfilesId$composer.selected}">
<listhead>
<listheader label="Company Name" sort="auto(companyName)" />
<listheader label="Vendor #" sort="auto(vendorNumber)" />
<listheader label="Status" sort="auto(status)" />
<listheader label="Address"/>
<listheader label="City"/>
<listheader label="State"/>
<listheader label="Zip"/>
</listhead>
</listbox>
code to draw listbox.

my composer file contains

public void doAfterCompose(org.zkoss.zk.ui.Component component) throws Exception {
super.doAfterCompose(component);
vendorGridId.setItemRenderer(new ListitemRenderer() {
@Override
public void render(Listitem item, Object data) throws Exception {
VendorProfileBean vendorProfileBean = (VendorProfileBean) data;
Listcell lc1 = new Listcell(vendorProfileBean.getCompanyName());
Listcell lc2 = new Listcell(vendorProfileBean.getVendorNumber().toString());
Listcell lc3 = null;
if(vendorProfileBean.getStatus() == 1){
lc3 = new Listcell("Active");
}else{
lc3 = new Listcell("Inactive");
}
Listcell lc4 = new Listcell(vendorProfileBean.getBillAddress1());
Listcell lc5 = new Listcell(vendorProfileBean.getBillCity());
Listcell lc6 = new Listcell(vendorProfileBean.getBillStateCode());
Listcell lc7 = new Listcell(vendorProfileBean.getBillZipCode());
lc1.setParent(item);
lc2.setParent(item);
lc3.setParent(item);
lc4.setParent(item);
lc5.setParent(item);
lc6.setParent(item);
lc7.setParent(item);
item.setAttribute("data", data);
}
});

pagingId.setPageSize(_pageSize);
refreshModel(pagingId.getActivePage(), true);
}

private void refreshModel(int activePage, boolean updateTotalSize){
PagingListModel model = (PagingListModel)vendorGridId.getListModel();
if(model == null){
model = new PagingListModel(activePage, _pageSize, this);
vendorGridId.setModel(model);
}
if (updateTotalSize) {
pagingId.setTotalSize(model.getTotalSize());
}
}

when i am clicking first time on menu to draw list box, it is drawing list with sells data . but when i am clicking on second time
on menu then it is displaying blank grid.

I debuged .I found that my vendorGridId.setItemRenderer() method as above is executing each time and setting data into cell.
When i saw in firebug on each click on menu, first time cells data is showing in firebug but not second time.

How can i resolved this issue.


Thanks
Vivek

1 2