From e1e2fed7963d439b01d2048b8b79fed69b051d94 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Thu, 23 Jul 2009 23:08:57 +0000 Subject: - Fix editing of results including decimals - Enable custom query result editing --- Source/CustomQuery.m | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Source') diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m index b6499431..f5742df4 100644 --- a/Source/CustomQuery.m +++ b/Source/CustomQuery.m @@ -1609,16 +1609,14 @@ BOOL isFieldEditable = (!noTableName && numberOfPossibleUpdateRows == 1) ? YES : NO; - // maybe?? - // if(!isFieldEditable) - // [errorText setStringValue:[NSString stringWithFormat:@"Field is not editable. Couldn't identify field origin unambiguously (%d match%@).", numberOfPossibleUpdateRows, (numberOfPossibleUpdateRows>1)?@"es":@""]]; + if(!isFieldEditable) + [errorText setStringValue:[NSString stringWithFormat:@"Field is not editable. Couldn't identify field origin unambiguously (%d match%@).", numberOfPossibleUpdateRows, (numberOfPossibleUpdateRows>1)?@"es":@""]]; - //to enable editing simply uncomment isEditable and delete 'NO' :) SPFieldEditorController *fieldEditor = [[SPFieldEditorController alloc] init]; id editData = [[fieldEditor editWithObject:[[fullResult objectAtIndex:rowIndex] objectAtIndex:[[aTableColumn identifier] intValue]] usingEncoding:[mySQLConnection encoding] isObjectBlob:isBlob - isEditable:/*isFieldEditable*/NO + isEditable:isFieldEditable withWindow:tableWindow] retain]; if ( editData ) -- cgit v1.2.3