possible solution:
Open device_init.lua (...\Mods\aircrafts\A-10C\Cockpit\Scripts), go to line 762 and paste this code:
indicators[#indicators + 1] = {
"ccKneeboard",
LockOn_Options.common_script_path.."KNEEBOARD/indicator/init.lua",
devices.KNEEBOARD,
{{},
--[[
all corrections are incremental to default values or calculated on connector base
default for example : sw incremental to half width where default width is 0.1
--]]
{sx_l = -0.65,sz_l = 0.15,sy_l = -0.5,ry_l = 10, rz_l = 85 ,sw = 0.142 * 0.5 - 0.1,sh = 0.214 * 0.5 - 0.1},
1}
}
Then, open Keyboard.lua (C:\Users\Andrew\Saved Games\DCS\Config\Input\A-10C\keyboard) go to line 842 [ENTER] and paste this code:
{combos = {{key = "]", reformers = {"RCtrl", }}, }, down = 3001, cockpit_device_id = 45, value_down = 1, name = "Kneeboard Next Page", category = "Kneeboard"},
{combos = {{key = "K", reformers = {"RAlt", "RCtrl", }}, }, down = iCommandPlaneShowKneeboard, name = "Kneeboard ON/OFF", category = "Kneeboard"},
{combos = {{key = "[", reformers = {"RAlt", }}, }, down = 3002, cockpit_device_id = 45, value_down = 1, name = "Kneeboard Previous Page", category = "Kneeboard"},
{combos = {{key = "K", reformers = {"RCtrl", }}, }, down = 3003, cockpit_device_id = 45, value_down = 1, name = "Kneeboard current position mark point", category = "Kneeboard"},
{combos = {{key = "K"}, {key = "/", reformers = {"RShift", }}, }, down = iCommandPlaneShowKneeboard, up = iCommandPlaneShowKneeboard, value_down = 1, value_up = -1, name = "Kneeboard glance view", category = "Kneeboard"},